I am using delegates in program. But situation is to more than one method to adding to a delegate. Please anyone can give me a solution with example how to done this?
Thakyou
home / developersection / forums / use of multicast delegate in c#?
Anupam Mishra
28-Jan-2016Multicast delegate is an extension of normal delegate. It helps you to point more than one method at a single moment of time.
In a windows application, we created a button on a form and on the button click, we want to invoke two methods (AlertMsg(), WarningMsg()). So the code is as follow: